home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7013.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  158 b   |  15 lines

  1. Ord(v);
  2.  
  3. Returns the ASCII code of v.
  4. e.g. 
  5. Ord('a') = 97
  6. Ord('A') = 65
  7.  
  8. Chr(v);
  9.  
  10. Returns the character of the ASCII code of v.
  11. e.g.
  12. Chr(97) = a
  13. Chr(65) = A
  14.  
  15.